home *** CD-ROM | disk | FTP | other *** search
/ Corbis Images Sampler - Red / RED.iso / pc / Interface / inter.dxr / 00086_dotoutline behavior.ls < prev    next >
Encoding:
Text File  |  1999-12-21  |  1.0 KB  |  37 lines

  1. global oldText
  2.  
  3. on mouseEnter me
  4.   puppetSound(3, "over")
  5.   sprite(71).visible = 1
  6.   member("blurb").text = "Corbis Outline specializes in compelling studio photography and candid shots of famous actors, musicians, athletes, scientists, artists and politicians. More than 100 contributing photographers include Andrew Eccles, David La Chapelle, Michael OΓÇÖNeill, Matthew Rolston and Mark Seliger."
  7.   sprite(9).visible = 0
  8.   sprite(21).visible = 1
  9.   sprite(22).visible = 0
  10.   sprite(23).visible = 0
  11.   sprite(24).visible = 0
  12.   sprite(25).visible = 0
  13.   sprite(26).visible = 0
  14.   sprite(27).visible = 0
  15.   sprite(28).visible = 1
  16.   sprite(29).visible = 0
  17.   sprite(30).visible = 0
  18.   sprite(31).visible = 0
  19.   sprite(32).visible = 0
  20.   sprite(33).visible = 0
  21.   sprite(34).visible = 0
  22.   sprite(35).visible = 0
  23. end
  24.  
  25. on mouseLeave me
  26.   member("blurb").text = oldText
  27.   sprite(21).visible = 0
  28.   sprite(28).visible = 0
  29. end
  30.  
  31. on mouseUp me
  32.   puppetSound(2, "click")
  33.   oldText = member("blurb").text
  34.   sprite(28).visible = 0
  35.   go("outline")
  36. end
  37.